Temp&Hum 7 Click
TempHum 7 Click demo application is developed using the NECTO Studio, ensuring compatibility with mikroSDK's open-source libraries and tools. Designed for plug-and-play implementation and testing, the demo is fully compatible with all development, starter, and mikromedia boards featuring a mikroBUS™ socket.
Click Library
- Author : MikroE Team
- Date : Nov 2019.
- Type : I2C type
Software Support
Example Description
This application measurement temperature and humidity data.
Example Libraries
- MikroSDK.Board
- MikroSDK.Log
- Click.TempHum7
Example Key Functions
- temphum7_cfg_setup Config Object Initialization function.
void temphum7_cfg_setup(temphum7_cfg_t *cfg)
Config Object Initialization function.
Click configuration structure definition.
Definition temphum7.h:167
- temphum7_init Initialization function.
TEMPHUM7_RETVAL temphum7_init(temphum7_t *ctx, temphum7_cfg_t *cfg)
Initialization function.
Click ctx object definition.
Definition temphum7.h:152
- temphum7_default_cfg Click Default Configuration function.
void temphum7_default_cfg(temphum7_t *ctx)
Click Default Configuration function.
- temphum7_get_relative_humidity Relative humidity.
float temphum7_get_relative_humidity(temphum7_t *ctx, uint8_t mode_data)
Relative humidity.
- temphum7_get_temperature Get temerature.
float temphum7_get_temperature(temphum7_t *ctx, uint8_t mode_data)
Temerature.
- temphum7_get_firmware_revision Firmware revision.
uint8_t temphum7_get_firmware_revision(temphum7_t *ctx)
Firmware revision.
Application Init
Initializes device and logger module and sets default configuration for measurements.
{
log_cfg_t log_cfg;
LOG_MAP_USB_UART( log_cfg );
log_init ( &logger, &log_cfg );
log_info ( &logger, "---- Application Init ----" );
}
#define TEMPHUM7_MAP_MIKROBUS(cfg, mikrobus)
Definition temphum7.h:65
void application_init(void)
Definition main.c:32
Application Task
Calculates and Logs temperature and relative humidity
{
mikrobus_printf ( "-> Temperature: %f C/r/n", temperature );
mikrobus_printf ( "-> Relative humidity: %f %%RH/r/n ", relative_humidity );
Delay_ms ( 1000 );
}
void application_task(void)
Definition main.c:59
#define TEMPHUM7_HOLD_MASTER_MODE
Definition temphum7.h:91
Application Output
This Click board can be interfaced and monitored in two ways:
- Application Output - Use the "Application Output" window in Debug mode for real-time data monitoring. Set it up properly by following this tutorial.
- UART Terminal - Monitor data via the UART Terminal using a USB to UART converter. For detailed instructions, check out this tutorial.
Additional Notes and Information
The complete application code and a ready-to-use project are available through the NECTO Studio Package Manager for direct installation in the NECTO Studio. The application code can also be found on the MIKROE GitHub account.